import React from "react"; import { getCareers } from "../../../lib/data"; import { CareersSection } from "../../../components/CareersSection"; import { PageHero } from "../../../components/PageHero"; export const revalidate = 300; export default function CareersPage({ params }: { params: { locale: string } }) { const locale = params.locale; const data = getCareers(locale); return (
{data.hero && ( )}
); }